home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
lingua
/
upcookie.pas
< prev
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
2KB
|
50 lines
unit Upcookie;
(***************************************************************************)
(* *)
(* ##### ##### ##### ##### ##### #### ###### ####### *)
(* # # # # # # # # # # *)
(* # # # # ### # #### # # ### # *)
(* # # # # # # # # # # # *)
(* ##### ##### ##### ##### ##### #### # # *)
(* *)
(***************************************************************************)
{
(c) 1995 Cogisoft
This component is FREE distribution. Use it for your own utilization.
But you can't sell an application, using this component, without the
authorization of Cogisoft.
COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
NO CODING !!!
Jerome VOLLET, CompuServe : 100560,3342
}
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TfmUpdateCookie = class(TForm)
Panel1: TPanel;
HelpBtn: TBitBtn;
CancelBtn: TBitBtn;
OKBtn: TBitBtn;
Panel2: TPanel;
sbxProperties: TScrollBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
fmUpdateCookie: TfmUpdateCookie;
implementation
{$R *.DFM}
end.